home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / sml_nj / 93src.lha / src / cps / nullglue.sml < prev    next >
Encoding:
Text File  |  1993-01-27  |  607 b   |  19 lines

  1. (* nullglue.sml
  2.  *
  3.  * Copyright 1989 by AT&T Bell Laboratories
  4.  *)
  5. structure IntNull = IntShare(
  6. structure Machm = struct
  7.                 val _ = System.Control.interp := true;
  8.                 fun generate lexp = ErrorMsg.impossible "no code generator!"
  9.              end
  10.   val fileExtension = ".nul"
  11.   functor Debugger = BogusDebugger);
  12. structure IntNullD = IntShare(
  13. structure Machm = struct
  14.                 val _ = System.Control.interp := true;
  15.                 fun generate lexp = ErrorMsg.impossible "no code generator!"
  16.              end
  17.   val fileExtension = ".nul"
  18.   functor Debugger = RealDebugger);
  19.